home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 October: Mac OS SDK / Dev.CD Oct 96 SDK / Dev.CD Oct 96 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / ODFDev / Form / Sources / Binding.k next >
Encoding:
Text File  |  1996-08-16  |  1010 b   |  38 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                Binding.k
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Copyright:            (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10.  
  11. #ifndef BINDING_K
  12. #define BINDING_K
  13.  
  14. // ----- Kind
  15. #define kODFFormKind "+//ISO 9070/ANSI::113722::US::CI LABS::Apple:ODFExamples:Kind:ODFForm"
  16.  
  17. // ----- Class ID
  18. #define kODFFormEditor "ODFExamples::ODFForm"
  19.  
  20. // ----- Editor User String
  21. #define kODFFormEditorUserString "ODFForm R1"
  22.  
  23. // ----- Kind User String
  24. #define kODFFormKindUserString "ODF Form Example"
  25.  
  26. // ----- Form OSType
  27. #define kODFFormOSType 'DFFD'
  28.  
  29. // ----- NMAP ID
  30. #define kKindCategoryMapId            128
  31. #define kEditorKindMapId            kKindCategoryMapId + 1
  32. #define kEditorUserStringMapId        kEditorKindMapId + 1
  33. #define kKindUserStringMapId        kEditorUserStringMapId + 1
  34. #define kOldMacOSTypeMapId            kKindUserStringMapId + 1
  35.  
  36. #endif
  37.  
  38.